home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000105_fdc@columbia.edu_Thu Nov 21 09:23:13 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  49 lines

  1. Article: 13883 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: W2K issue?
  6. Date: 21 Nov 2002 09:23:07 -0500
  7. Organization: Columbia University
  8. Lines: 32
  9. Message-ID: <ariq8b$3km$1@watsol.cc.columbia.edu>
  10. References: <8Qudna88DOMQiEGgXTWc3A@giganews.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1037888589 27614 128.59.39.139 (21 Nov 2002 14:23:09 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 21 Nov 2002 14:23:09 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13883
  16.  
  17. In article <8Qudna88DOMQiEGgXTWc3A@giganews.com>,
  18. Steve <steve@baus-systems.com> wrote:
  19. : I have K95 installed on a PC that was just upgraded from Win 98 to Win 2K.
  20. : There is an internal 3Com modem installed that I have been using to receive
  21. : files doing a basic kermit file transfer by setting the PC in server mode
  22. : and letting the calling PC control the process.
  23. :
  24. Which version of K95?
  25.  
  26. : I have a script on the W2K
  27. : PC that sets the port to tapi, sets the speed, uses the output command to
  28. : send Hayes AT settings, including S0=1 to the modem and then puts it in
  29. : server mode.
  30. :
  31. You shouldn't need to send AT commands to the modem.  Just:
  32.  
  33.   set port tapi
  34.   set speed 57600     ; or whatever
  35.   set dial display on ; so you can watch what happens
  36.   answer
  37.   if success server
  38.  
  39. : Worked fine until the upgrade.  Now the modem will not auto
  40. : answer.  I have tried setting the modem type and port and still nothing.  I
  41. : know the phone line is OK as I can issue a dial command at the K95 prompt
  42. : and that works.  I have removed the modem and let Windows re install and
  43. : still nothing.
  44. Try the sample shown above; watch the Kermit/modem dialog and see if it
  45. offers any clues.
  46.  
  47. - Frank
  48.